home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer: Getting Started / Internet Surfer - Getting Started (Wayzata Technology)(7231)(1995).bin / pc / textfile / mac_faqs / aix_fax / part2 < prev   
Text File  |  1995-01-27  |  46KB  |  1,174 lines

  1. Xref: bloom-picayune.mit.edu comp.unix.aix:19872 news.answers:4575
  2. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!usc!wupost!cs.utexas.edu!mavrick!basto@cactus.org
  3. From: basto@cactus.org (Luis Basto)
  4. Newsgroups: comp.unix.aix,news.answers
  5. Subject: AIX Frequently Asked Questions (Part 2 of 2)
  6. Summary: This posting contains a list of Frequently Asked Questions 
  7.          and their answers about AIX, IBM's version of Unix.
  8. Keywords: AIX RS/6000 questions answers
  9. Message-ID: <1070@mavrick.UUCP>
  10. Date: 14 Dec 92 07:22:02 GMT
  11. Expires: 15 Jan 93 01:23:45 GMT
  12. Sender: luis@mavrick.UUCP
  13. Reply-To: basto@cactus.org (Luis Basto)
  14. Followup-To: comp.unix.aix
  15. Lines: 1156
  16. Approved: news-answers-request@MIT.Edu
  17.  
  18. Archive-name: aix-faq/part2
  19. Last-modified: Dec 12, 1992
  20. Version: 2.0
  21.  
  22.  
  23. Version: $Id: aix.faq,v 2.0 12/12/92 basto $
  24.  
  25. Frequently Asked Questions to AIX 3.x and IBM RS/6000
  26. _____________________________________________________
  27.  
  28. 2.07: What's with malloc()?
  29.         
  30. malloc() uses a late allocation algorithm based on 4.3 BSD's malloc()
  31. for speed.  This lets you allocate very large sparse memory spaces,
  32. since the pages are not actually allocated until they are touched for
  33. the first time.  Unfortunately, it doesn't die gracefully in the face of
  34. loss of available memory.  See the "Paging Space Overview" under
  35. InfoExplorer, and see the notes on the linker in this document for an
  36. example of an ungraceful death.
  37.  
  38. If you want your program to get notified when running out of memory, you
  39. should handle the SIGDANGER signal.  The default is to ignore it. 
  40. SIGDANGER is sent to all processes when paging space gets low, and if
  41. paging space gets even lower, processes with the highest paging space
  42. usage are sent the SIGKILL signal.
  43.  
  44. malloc() is substantially different in 3.2, allocating memory more
  45. tightly.  If you have problems running re-compiled programs on 3.2, try
  46. compiling them with MALLOCTYPE=3.1. 
  47.  
  48.  
  49. 2.08: Why does xlc complain about 'extern char *strcpy()'
  50.  
  51. The header <string.h> has a strcpy macro that expands strcpy(x,y) to
  52. __strcpy(x,y), and the latter is then used by the compiler to generate
  53. inline code for strcpy.  Because of the macro, your extern declaration
  54. contains an invalid macro expansion.  The real cure is to remove your
  55. extern declaration but adding -U__STR__ to your xlc will also do the trick.
  56.  
  57.  
  58. 2.09: Why do I get 'Parameter list cannot contain fewer ....'
  59.  
  60. This is the same as above.
  61.  
  62.  
  63. 2.10: Why does xlc complain about '(sometype *)somepointer = something'
  64.  
  65. Software that is developed using GNUC may have this construct.  However,
  66. standard C does not permit casts to be lvalues, so you will need to
  67. change the cast and move it to the right side of the assignment.  If you
  68. compile with 'cc', removing the cast completely will give you a warning,
  69. 'xlc' will give you an error (provided somepointer and something are of
  70. different types - but else, why would the cast be there in the first place?)
  71.  
  72.  
  73. 2.11: Some more common errors
  74.  
  75. Here are a few other common errors with xlc:
  76.  
  77. 305 |     switch((((np)->navigation_type) ? (*((np)->navigation_type)) :
  78.       ((void *)0)))
  79.       .a...........  
  80. a - 1506-226: (S) The second and third operands of the conditional
  81. operator must be of the same type.
  82.  
  83. The reason for this is that xlc defines NULL as (void *)0, and it does
  84. not allow two different types as the second and third operand of ?:. 
  85. The second argument above is not a pointer and the code used NULL
  86. incorrectly as a scalar.  NULL is a nil pointer constant in ANSI C and
  87. in some traditional compilers.
  88.  
  89. You should change NULL in the third argument above to an integer 0.
  90.  
  91.  
  92. 2.12: Can the compiler generate assembler code?
  93.  
  94. The traditional -S option is not supported by the XLC compiler, and
  95. there is in fact no way to make the compiler generate machine readable
  96. assembler code.  The option -qlist will generate a human readable one in
  97. the .lst file.
  98.  
  99.  
  100. 2.13: Curses
  101.  
  102. Curses based applications should be linked with -lcurses and _not_ with
  103. -ltermlib.  It has also been reported that some problems with curses are
  104. avoided if your application is compiled with -DNLS.
  105.  
  106. Peter Jeffe <peter@ski.austin.ibm.com> also notes:
  107.  
  108. >the escape sequences for cursor and function keys are *sometimes*
  109. >treated as several characters: eg. the getch() - call does not return
  110. >KEY_UP but 'ESC [ C.'
  111.  
  112. You're correct in your analysis: this has to do with the timing of the
  113. escape sequence as it arrives from the net.  There is an environment
  114. variable called ESCDELAY that can change the fudge factor used to decide
  115. when an escape is just an escape.  The default value is 500; boosting
  116. this a bit should solve your problems.
  117.  
  118. Further on the matter of curses, I've received the comments below
  119. concerning extended curses:
  120.  
  121. From: Christopher Carlyle O'Callaghan <asdfjkl@wam.umd.edu>
  122.  
  123. 1) The sample program in User Interface Programming Concepts, page 7-13
  124.    is WRONG. Here is the correct use of panes and panels.  (This is
  125.    one of the IBM manuals that comes with the RS/6000)
  126.  
  127. #include <cur01.h>
  128. #include <cur05.h>
  129.  
  130. main()
  131. {
  132. PANE *A, *B, *C, *D, *E, *F, *G, *H;
  133. PANEL *P;
  134.  
  135. initscr();
  136.  
  137. A = ecbpns (24, 79, NULL, NULL, 0, 2500, Pdivszp, Pbordry, NULL, NULL);
  138.  
  139. D = ecbpns (24, 79, NULL, NULL, 0, 0,    Pdivszf, Pbordry, NULL, NULL);
  140. E = ecbpns (24, 79, D,    NULL, 0, 0,    Pdivszf, Pbordry, NULL, NULL);
  141.  
  142. B = ecbpns (24, 79, A, D, Pdivtyh, 3000, Pdivszp, Pbordry, NULL, NULL);
  143.  
  144. F = ecbpns (24, 79, NULL, NULL, 0, 0,    Pdivszf, Pbordry, NULL, NULL);
  145. G = ecbpns (24, 79, F,    NULL, 0, 5000, Pdivszp, Pbordry, NULL, NULL);
  146. H = ecbpns (24, 79, G,    NULL, 0, 3000, Pdivszp, Pbordry, NULL, NULL);
  147.  
  148. C: = ecbpns (24, 79, B, F, Pdivtyh, 0, Pdivszf, Pbordry, NULL, NULL);
  149.  
  150. P = ecbpls (24, 79, 0, 0, "MAIN PANEL", Pdivtyv, Pbordry, A);
  151.  
  152. ecdvpl (P);
  153. ecdfpl (P, FALSE);
  154. ecshpl (P); 
  155. ecrfpl (P);
  156. endwin();
  157. }
  158.  
  159. 2) DO NOT include <curses.h> and any other <cur0x.h> file together.
  160.    You will get a bunch of redefined statements.
  161.  
  162. 3) There is a CURSES and EXTENDED CURSES stuff.  Use only one or the
  163.    other. If the manual says that they're backwards compatible or some
  164.    other indication that you can use CURSES routines with EXTENDED,
  165.    don't believe it. To use CURSES you need to include <curses.h> and
  166.    you can't (see above).
  167.  
  168. 4) If you use -lcur and -lcurses in the same link command, you will get
  169.    Memory fault (core dump) error...  YOU CANNOT use both of them at the
  170.    same time. -lcur is for extended curses, -lcurses is for regular curses.
  171.  
  172. 5) When creating PANEs, when you supply a value (other than 0) for the
  173.    'ds' parameter and use Pdivszf value for the 'du' parameter, the 'ds'
  174.    will be ignored (the sample program on page 7-13 in User Interface
  175.    Programming Concepts is wrong.) For reasons as yet undetermined,
  176.    Pdivszc doesn't seem to work (or at least I can't figure out how to
  177.    use it.)
  178.  
  179. 6) If you're running into bugs and can't figure out what is happening,
  180.    try the following:
  181.    include -qextchk -g in your compile line
  182.     -qextchk will check to make sure you're passing the right number of
  183.        parameters to the procedures
  184.     -g will allow you to use the inline debugger on Unix/AIX.
  185.    to use the debugger after you compiled it, 
  186.     type: dbx <fn>
  187.     the command 'help' will give you all of the possible commands to
  188.        use in the debugger... have fun... :)
  189.  
  190. 7) Do not use 80 as the number of columns if you're gonna use the whole
  191.    screen. The lower right corner will get erased.  Use 79 instead.
  192.  
  193. 8) If you create a panel, you must create at least 1 pane, otherwise you
  194.    will get a Memory fault (core dump).
  195.  
  196. 9) When creating a panel, if you don't have a border around it, any title
  197.    you want will not show up.
  198.  
  199. 10) to make the screen scroll down:
  200.     wmove (win, 0, 0);
  201.     winsertln (win)
  202.  
  203. 11) delwin(win) DOESN'T WORK IN EXTENDED WINDOWS.
  204.  
  205.     Anyway.. to make it appear as if a window is deleted, you need to do
  206.     the following:
  207.     for every window that you want to appear on the screen
  208.     touchwin(win)
  209.     wrefresh(win)
  210.  
  211.     you must make sure that you do it in the exact same order as you put
  212.     them on the screen (i.e., if you called newwin with A, then C, then B,
  213.     then you must do the loop with A, then C, then B, otherwise you won't
  214.     get the same screen back).  The best thing to do is to put them into
  215.     an array and keep track the of last window index.
  216.  
  217. 12) mvwin(win, line, col) implies that it is only used for viewports and
  218.     subwindows... It can also be used for the actual windows themselves.
  219.  
  220. 13) If you specify the attribute of a window using wcolorout(win), any
  221.     subsequent calls to chgat(numchars, mode) or any of it's relatives
  222.     will not work. (or at least they get very picky...)
  223.  
  224.  
  225. 2.14: How do I speed up linking
  226.  
  227. Please refer to sections 2.03 and 2.06 above.
  228.  
  229.  
  230. 2.15: What is deadbeef?
  231.  
  232. When running the debugger (dbx), you may have wondered what the
  233. 'deadbeef' is you occasionally see in registers.  Do note, that
  234. 0xdeadbeef is a hexadecimal number that also happens to be some kind
  235. of word (the RS/6000 was built in Texas!), and this hexadecimal number
  236. is simply put into unused registers at some time, probably during
  237. program startup.
  238.  
  239. _____________________________________________________________________________
  240. 3.00: Fortran and other compilers
  241.  
  242. This section covers Fortran, Pascal, Ada, etc.  On fortran, there seem
  243. to have been some problems with floating point handling, in particular
  244. floating exceptions.
  245.  
  246.  
  247. 3.01: I have problems mixing fortran and C code, why?
  248.  
  249. A few routines (the most famous one is getenv) exist in both the fortran
  250. and the C library but with different parameters.  You can therefore not
  251. have a mixed program that call getenv from both C and fortran code. 
  252. When linking a mixed program calling getenv from either, be sure to
  253. specify the correct library first on your command line.  If your main
  254. program is fortran and you call getenv from a C routine, you must
  255. therefore add -lc to the xlf command line for linking.
  256.  
  257. If you want to call getenv from both C and fortran code in a mixed
  258. program, you need to compile all the fortran code with the -qextname
  259. option.  This appends an underscore to all fortran external names and
  260. ensures that no confusion occurs with default C libraries.  Of course an
  261. underscore should be added by hand in the C code to the name of all
  262. routines which are called form fortran and to all calls to fortran
  263. routines.  If you do that, fortran will call something which appears to
  264. C as getenv_ and there will be no confusion.
  265.  
  266.  
  267. 3.02: How do I statically bind fortran libraries and dynamically
  268.       bind C libraries?
  269. From: amaranth@vela.acs.oakland.edu (Paul Amaranth)
  270.  
  271. [ Editor's note: Part of this is also discussed above under the C compiler
  272.   discussions, but I felt it was so valuable that I have left it all in. 
  273.   I've done some minor editing, mostly typographical. ]
  274.  
  275. The linker and binder are rather versatile programs, but it is not
  276. always clear how to make them do what you want them to.  In particular,
  277. there are times when you do not want to use shared libraries, but
  278. rather, staticly bind the required routines into your object.  Or, you
  279. may need to use two version of the same routine (eg, Fortran & C).  Here
  280. are the results of my recent experiments.  I would like to thank Daniel
  281. Premer and Brad Hollowbush, my SE, for hints.  Any mistakes or omissions
  282. are my own and I have tended to interchange the terms "linker" and
  283. "binder".  These experiments were performed on AIX 3.1.2.  Most of this
  284. should be applicable to later upgrades of 3.1.
  285.  
  286. 1)  I have some C programs, I want to bind in the runtime routines.  How
  287.     do I do this? [Mentioned in section 2.04 of this article as well, ed.]
  288.  
  289.     You can put the -bnso binder command on the link line.  You should
  290.     also include the -bI:/lib/syscalls.exp control argument:
  291.       
  292.       $ cc *.o -bnso -bI:/lib/syscalls.exp -o foo
  293.  
  294.     This will magically do everything you need.  Note that this will bind
  295.     _all_ required routines in.  The -bI argument tells the linker that
  296.     these entry points will be resolved dynamically at runtime (these are
  297.     system calls).  If you omit this you will get lots of unresolved 
  298.     reference messages.
  299.  
  300. 2)  I want to staticly bind in the Fortran runtime so a) my customers do
  301.     not need to buy it and b) I don't have to worry about the runtime
  302.     changing on a new release.  Can I use the two binder arguments in
  303.     1) to do this?
  304.  
  305.     You should be able to do so, but, at least under 3002, if you do
  306.     you will get a linker error referencing getenv.  In addition, there
  307.     are a number of potential conflicts between Fortran and C routines.
  308.     The easy way just does not work.  See the section on
  309.     2 stage linking for C and Fortran on how to do this.  The getenv
  310.     problem is a mess, see the section on Comments & Caveats for more.
  311.  
  312. 3)  I have a mixture of C and Fortran routines, how can I make sure
  313.     that the C routines reference the C getenv, while the Fortran routines
  314.     reference the Fortran getenv (which has different parameters and, if
  315.     called mistakenly by a C routine results in a segmentation fault)?
  316.  
  317.     You can't.  Only one symbol definition is allowed, and it will be the
  318.     _first_ definition on the _last_ link.  Here is the quote from the 
  319.     ld info file:
  320.  
  321.        In this version of ld, the first definition of each symbol in
  322.        the link takes precedence and is used even if the first reference
  323.        follows the definition.
  324.  
  325.     The only way I can possibly think of to do this is extremely messy:
  326.     Make the C and Fortran routines separate modules.  Staticly bind them
  327.     with their libraries.  Have them dynamicly call each other.  ech.
  328.     I haven't tried this, however.
  329.  
  330.     If you want to bind everything together, write yourself an interface
  331.     in one language to use the other's routine.  I did this with getenv
  332.     and it works tolerably well.
  333.  
  334. 4)  I have C and Fortran routines.  I want to bind in the xlf library, while
  335.     letting the rest of the libraries be shared.  How do I do this?
  336.  
  337.     You need to do a 2 stage link.  In the first stage, you bind in the
  338.     xlf library routines, creating an intermediate object file.  The
  339.     second stage resolves the remaining references to the shared libraries.
  340.  
  341.     This is a general technique that allows you to bind in specific system
  342.     routines, while still referencing the standard shared libraries.
  343.  
  344.     Specifically, use this command to bind the xlf libraries to the Fortran
  345.     objects:
  346.  
  347.        $ ld -bh:4 -T512 -H512 <your objects> -o intermediat.o \
  348.          -bnso -bI:/lib/syscalls.exp -berok -lxlf -bexport:/usr/lib/libg.exp \
  349.          -lg -bexport:<your export file>
  350.  
  351.     The argument -bexport:<your export file> specifies a file with the
  352.     name of all entry points that are to be visible outside the intermediate 
  353.     module.  Put one entrypoint name on a line.  The -bI:/lib/libg.exp line 
  354.     is required for proper functioning of the program.  The -berok argument 
  355.     tells the binder that it is ok to have unresolved references, at least 
  356.     at this time (you would think -r would work here, but it doesn't seem to).  
  357.     The -bnso argument causes the required modules to be imported
  358.     into the object.  The -lxlf, of course, is the xlf library.
  359.  
  360.     Then, bind the intermediate object with the other shared libraries in
  361.     the normal fashion:
  362.  
  363.        $ ld -bh:4 -T512 -H512 <C or other modules> intermediate.o \
  364.          /lib/crt0.o -lm -lc
  365.  
  366.     Note the absence of -berok.  After this link, all references should
  367.     be resolved (unless you're doing a multistage link and making another
  368.     intermediate).
  369.  
  370.     NOTE THE ORDER OF MODULES.  This is extremely important if, for example,
  371.     you had a subroutine named "load" in your Fortran stuff.  Putting the
  372.     C libraries before the intermediate module would make the C "load"
  373.     the operable definition, rather than the Fortran version EVEN THOUGH 
  374.     THE FORTRAN MODULE HAS ALREADY BEEN THROUGH A LINK AND ALL REFERENCES 
  375.     TO THE SYMBOL ARE CONTAINED IN THE FORTRAN MODULE.  This can
  376.     be extremely difficult to find (trust me on this one :-)  Is this
  377.     a bug, a feature, or what?
  378.     
  379.     [As mentioned in section 2.03 of this article, it is a feature that you
  380.     can replace individual objects in linked files, ed.]
  381.  
  382.     The result will be a slightly larger object than normal.  (I say slightly
  383.     because mine went up 5%, but then its a 2 MB object :-)
  384.  
  385.  
  386. Comments & Caveats:
  387.  
  388.    From the documentation the -r argument to the linker should do what
  389.    -berok does.  It does not.  Very strange results come from using the
  390.    -r argument.  I have not been able to make -r work in a sensible manner
  391.    (even for intermediate links which is what it is supposed to be for).
  392.    Note: this is one of the things I gave up on.  I would like to hear
  393.    from anyone with more info on this.
  394.  
  395.    When binding an intermediate module, use an export file to define the
  396.    entry points you want visible in the later link.  If you don't do this,
  397.    you'll get the dreaded "unresolved reference" error.  Import files name
  398.    entry points that will be dynamically resolved (and possibly where).
  399.  
  400.    If you are in doubt about what parameters or libraries to link, use the
  401.    -v arg when linking and modify the exec call that shows up into 
  402.    an ld command.  Some thought about the libraries will usually yield an
  403.    idea of when to use what.  If you don't know what an argument is for,
  404.    leave it in.  It's there for a purpose (even if you don't understand it).
  405.  
  406.    Watch the order of external definitions (ie, libraries) when more than
  407.    one version of a routine may show up, eg "load".  The first one defined
  408.    on the ld command line is the winner.  
  409.  
  410.    The getenv (and system and signal) problem is a problem that started out
  411.    minor, got somewhat worse in 3003 and, eventually will be correctly fixed.
  412.    Basically, you should extract the 3002 version of these three routines
  413.    from xlf.a before doing the update and save them away, then link these
  414.    routines in if you use these Fortran system services.  
  415.  
  416.  
  417. 3.03: How do I check if a number is NaN?
  418. From: sdl@glasnost.austin.ibm.com (Stephen Linam)
  419.  
  420. NaN is "Not a Number".  It arises because the RISC System/6000 uses
  421. IEEE floating point arithmetic.
  422.  
  423. To determine if a variable is a NaN you can make use of the property
  424. that a NaN does not compare equal to anything, including itself.
  425. Thus, for real variable X, use
  426.  
  427.     IF (X .NE. X) THEN    ! this will be true if X is NaN
  428.  
  429. Floating point operations which cause exceptions (such as an overflow)
  430. cause status bits to be set in the Floating Point Status and Control
  431. Register (FPSCR).  There is a Fortran interface to query the FPSCR, and
  432. it is described in the XLF Fortran manuals -- I don't have the manuals
  433. right here, but look for FPGETS and FPSETS.
  434.  
  435. I don't know of any tutorials about IEEE Floating Point beyond the
  436. standards themselves: ANSI/IEEE STD 754-1985 (IEEE Standard for Binary
  437. Floating-Point Arithmetic) and ANSI/IEEE STD 854-1987 (IEEE Standard for
  438. Radix-Independent Floating-Point Arithmetic), both available from IEEE. 
  439. The IBM manual "Risc System/6000 Hardware Technical Reference - General
  440. Information" (SA23-2643) describes what floating point exceptions can
  441. occur and which bits are set in the FPSCR as a result of those exceptions.
  442.  
  443. ______________________________________________________________________________
  444. 4.00: Public Domain software
  445.  
  446. There is a lot of interest in PD software, and a number of people have
  447. compiled some of this.  With the increasing interest in the RS/6000,
  448. configuration files, etc. is often seen in PD software or can be
  449. obtained from people who already ported it.
  450.  
  451.  
  452. 4.01: How do I find sources?
  453.  
  454. [ dick@ccnext.ucsf.edu (Dick Karpinski) asked me to include this 
  455.  information, and he forwarded me an article from jik@MIT.Edu
  456.  (Jonathan Kamens).  Ed. ]
  457.  
  458. There is a newsgroup devoted to posting about how to get a certain 
  459. source.  It is however strongly urged to follow the guidelines in
  460. the article How_to_find_sources(READ_THIS_BEFORE_POSTING), which you
  461. can get via anonymous ftp from pit-manager.mit.edu (18.172.1.27):
  462.  
  463. /pub/usenet/comp.sources.wanted/H_t_f_s_(R_T_B_P)
  464.  
  465. Also available from mail-server@pit-manager.mit.edu by sending a mail
  466. message containing:
  467.  
  468. send usenet/comp.sources.wanted/H_t_f_s_(R_T_B_P)
  469.  
  470. Send a message containing "help" to get general information about the
  471. mail server.
  472.  
  473. If you don't find what you were looking for by following these
  474. guidelines, you can post a message to comp.sources.wanted.
  475.  
  476.  
  477. 4.02: Are there any ftp sites?
  478.  
  479. Here is a list of some sites that are supposed to have RS/6000 specific
  480. software.  I haven't verified all the entries.
  481.  
  482. aixpdslib.seas.ucla.edu    128.97.2.211    pub
  483. acd.ucar.edu        128.117.32.1     pub/rs6000         
  484. acsc.acsc.com       143.127.0.2    pub
  485. byron.u.washington.edu    128.95.48.32    pub/aix/RS6000
  486. cs.utk.edu        128.169.201.1    pub/ibm_rs6000
  487. merit.edu        35.1.1.42    pub/xntp
  488. lightning.gatech.edu    128.61.10.8    pub/aix
  489. tesla.ee.cornell.edu    128.84.253.11    pub
  490. nic.funet.fi         128.214.6.100    pub/unix/AIX/RS6000
  491.  
  492. The first one above is dedicated to software running on AIX.  It might
  493. not always be the latest versions of the software, but it has always
  494. been ported to AIX (normally AIX version 3 only).  Once connected, you
  495. should retrieve the files README and pub/ls-lR.
  496.  
  497. Please note that the last one is in Finland, i.e.  in EUROPE! They are
  498. having much too many people ftp'ing from the US which is hard on the
  499. transatlantic link - further, most of the software it carries has been
  500. taken from US sites originally.  Therefore, please use this site ONLY if
  501. you are in Europe, preferably only from the northern part of Europe. 
  502.  
  503. Further, haedener@iacrs1.unibe.ch (Konrad Haedener) has an archive on
  504. a system in Switzerland.  Here is his information about the archive:
  505.  
  506. As previously announced I have opened our machine for anonymous FTP.  I
  507. have a small but growing collection of RS/6000 software, i.e. versions
  508. of popular software that should readily compile under AIX 3.1.5.
  509.  
  510. Contributions are always welcome (please consult the /README file).
  511. This is host iacrs1.unibe.ch (130.92.11.3).
  512.  
  513. Do remember, that Switzerland is in Europe, i.e. keep the transatlantic
  514. transfers on a minimum.
  515.  
  516.  
  517. 4.03: General hints
  518.  
  519. In general, curses based applications should be linked with -lcurses and
  520. _not_ with -ltermlib.  It has also been reported that compiling with
  521. -DNLS helps curses based programs.
  522.  
  523. Note that the RS/6000 has two install programs, one with System V flavor
  524. in the default PATH (/etc/install with links from /usr/bin and /usr/usg),
  525. and one with BSD behavior in /usr/ucb/install.
  526.  
  527.  
  528. 4.04: GNU Emacs
  529. From: Bill Wohler <wohler@sap-ag.de>
  530.  
  531. Version 18.57 of GNU Emacs has RS/6000 support.  Here are a few hints:
  532. In the src directory, copy config.h-dist to config.h and make the
  533. following changes:
  534.  
  535.     o change "s-bsd4-2.h" to "s-aix3-1.h"
  536.     o change "m-vax.h" to "m-ibmrs6000.h"
  537.     o define HAVE_X_WINDOWS
  538.         o define X11
  539.         o define PURESIZE 135000 (120000 is enough without X)
  540.         o if you don't want to compile with debugging information, add:
  541.           #define C_DEBUG_SWITCH
  542.           #define C_OPTIMIZE_SWITCH -O
  543.  
  544. Now, run "make" and ignore the sed problems while building xmakefile.  
  545.  
  546. Emacs will core-dump if it is stripped, so don't strip when you install
  547. it.  You can e.g.  edit (a copy of the) Makefile in src replacing all
  548. 'install -s' with /usr/ucb/install.
  549.  
  550. [The latest version of emacs is 18.59 but I did not have a chance to
  551. look at it yet. - ed.]
  552.  
  553.  
  554. 4.05: gcc/gdb
  555.  
  556. GNU C version 2.0 supports the the RS/6000, and compiles straight out of
  557. the box.  You may, however, experience that compiling it requires large
  558. amounts of paging space.
  559.  
  560. The latest versions of gcc and gdb, currently 2.3.1 and 4.6
  561. respectively, requires a patch to the 'as' assembler to compile.  Call
  562. IBM software support and request patch U4     .
  563.  
  564. 4.06: GNU Ghostscript 2.3
  565.  
  566. The PostScript interpreter GNU Ghostscript Version 2.3 supports the
  567. RS/6000 and can be found on various ftp sites.
  568.  
  569. 4.07: TeX
  570.  
  571. TeX can be retrieved via ftp from rusmvl.rus.uni-stuttgart.de (129.69.1.12).
  572.  
  573.  
  574. 4.08: perl
  575.  
  576. A diff should have been posted here, but I haven't seen it.  If you use
  577. bsdcc from the bsdport document, say no to use perl's builtin malloc(),
  578. and edit config.H to '#define HAS_SYMLINK', you should be on your way. 
  579. Bill Wohler tells me that perl will run without editing config.H and
  580. with cc as well.  So just say no to use perl's malloc().
  581.  
  582. Doug Sewell <DOUG@YSUB.YSU.EDU> adds:
  583.  
  584. In addition to not using the perl-provided malloc, when asked if you
  585. want to edit config.sh, change 'cppstdin' from the wrapper-program
  586. to '/lib/cpp'.
  587.  
  588. The perl wrapper name is compiled into perl, and requires that you keep
  589. that file in the source directory, even if you blow away the rest of
  590. the source.  /lib/cpp will do the job by itself.  I suspect this will
  591. be fixed in perl 4.0pl11 Configure script.
  592.  
  593. Also, beware if you have gdbm installed per the instructions in the FAQ.
  594. Gdbm is compiled with bsdcc; perl (as I installed it, anyway) was built
  595. with cc, so I used the IBM-provided ndbm routines.
  596.  
  597.  
  598. 4.09: X-Windows
  599.  
  600. IBM has released X11R4 and Motif 1.1 in combination with AIX 3.2.0. 
  601. X11R5 is available as AIXwindows 1.2.3 since AIX Level 3.2.3.
  602.  
  603. Those of you on 3.1 might want to read the following.  Some people from
  604. IBM have released patches for the X11R4 distribution tape available via
  605. anonymous FTP from export.lcs.mit.edu.  Note that as with the RT, there
  606. is no X11R4 server to build, just the libraries.
  607.  
  608. From: Frederick Staats <fritz@saturn.ucsc.edu>
  609.  
  610. In mit/config/ibm.cf
  611.     Updated OSName (AIX 3.1.6)
  612.  
  613. In mit/config/site.def
  614.     Changed ProjectRoot /usr/local/X11R5
  615.     Added ManSuffix (to change suffix from n to 1)
  616.     Added InstallXdmConfig YES and
  617.     InstallXinitConfig YES
  618.     Added HasXdmAuth YES (Copied mit/lib/Xdmcp/Wraphelp.c to source tree)
  619.     Added InstallFSConfig YES
  620.  
  621. In mit
  622.     nohup make BOOTSTRAPCFLAGS="-Daix" World &
  623.     nohup make install &
  624.     nohup make install.man &
  625.  
  626. Please note that there are known bugs in Xibm server of the X11R5
  627. release that prevent "xdm" from being usable.  A simple patch (that I'm
  628. not free to redistribute) should be out very soon through the regular
  629. contrib channels.
  630.  
  631. Also note, that some files in mit/extensions/lib/PEX/c_binding are very
  632. large and are told to require at least 150 Mb paging space to compile.
  633.  
  634. Apparently, only the Skyway adapter is supported for X11R5.
  635.  
  636. [the Skyway adapter is "IBM Color Graphics Display Adaptor" in IBM
  637. documents, the "IBM High-Performance N-Bit 3D Color Graphics Processor"
  638. is the Sabine.  Ed.]
  639.  
  640.  
  641. From: pierce@claven.cambridge.ibm.com (Andrew Pierce)
  642.  
  643. The following bugs have been reported with the R5 server and are fixed
  644. (hopefully!), and the fixes have been sent to MIT for inclusion in the
  645. first patch set:
  646.  
  647. BackingStore does not seem to work (twm menus blank and xman pulldown 
  648.     menus only display once.
  649. Problem in keyclick restoration/bell
  650. Problem with option parsing (-bs does not turn off backing store).
  651. Problem with setting non-blocking I/O on X Connections 
  652.     (resizing xcalc wedges the server).
  653. xdm core dumps. 
  654.  
  655. There is also a problem in initializing the display adapter when the R5
  656. server is brought up from a poweroff condition on the RISC/6000.  We are
  657. still investigating this problem.  A temporary workaround is to run the
  658. AIX product server first, which seems to do the right thing in
  659. initializing the adapter, then run the R5 server.
  660.  
  661. As for whether the OSF/Motif window manager will work with the R5
  662. server, I don't know of any reasons why it shouldn't, and I've run it
  663. now and again, although tvtwm is my preferred wm.
  664.  
  665.  
  666. From: cary@jove.Colorado.EDU (John R. Cary)
  667.  
  668. There are (at least) three problems.  
  669.  
  670. 1) The fonts as built with the IBM (Greening) patches of X11R4 do not
  671. work with the AIX3.1.5 server because (according to mleisher@NMSU.Edu)
  672. they likely have the wrong byte order.
  673. 2) The ibm fonts that come with AIX3.1.5 must be converted to .pcf fonts
  674. to work with the X11R5 server.
  675. 3) Info always looks for its fonts (in /usr/lpp/info/X11fonts)
  676. regardless of which server you are using.  So if you use the X11R5
  677. server, info loads the AIX3.1x .snf fonts, which do not work with the
  678. X11R5 server.
  679.  
  680. Using the X11R5 server (my choice) means that you must fix problems 2
  681. and 3.
  682.  
  683. My fix of 3: was simply to rename the info fonts directory so that info
  684. could not find it and load it.  Another fix (I am told) is to set one's
  685. font path with /usr/lpp/info/X11fonts last so that another fonts is
  686. loaded first.  This did not work for me, perhaps because of differences
  687. in my fonts.alias file.
  688.  
  689. My fix of 2: I first got snftobdf from the X11 contrib directory on
  690. export.lcs.mit.edu and built it. I then made a directory:
  691. mkdir /usr/local/X11R5/lib/X11/fonts/ibm
  692. which I added to my font path with xset in my .xinitrc file.
  693. Then I constructed the chosen .pcf fonts one at a time:
  694. cd /usr/lib/X11/fonts
  695. snftobdf Rom10.snf | bdftopcf >/usr/local/X11R5/lib/X11/fonts/ibm/Rom10.pcf
  696. I actually did this with this script:
  697.  
  698. #!/bin/ksh 
  699. # A script to convert desired AIX fonts to .pcf fonts for X11R5 
  700. for arg in 6x10 Bld14 Rom14 Rom6 6x12 Bld17 Rom16 Rom7 vtbold 6x13
  701. Erg 14 Rom17 Rom8 vtdhbot 8x13 Itl14 Rom22 cursor vtdhtop 8x13B Rom10
  702. Rom28 fixed vtdwidth 9x15 Rom11 Rom29 Vtsingle 
  703. do
  704.  
  705. echo "snftobdf $arg.snf | bdftopcf >/usr/local/X11R5/lib/X11/fonts/ibm/$arg.pcf"
  706. snftobdf $arg.snf | bdftopcf >/usr/local/X11R5/lib/X11/fonts/ibm/$arg.pcf
  707.  
  708. done
  709.  
  710. If you want to continue using the AIX3.1x server and you want to use the
  711. X11R4 fonts, you must convert these fonts to the correct bit order.  I
  712. did not do this, and so DO NOT KNOW the correct procedure.  I imagine
  713. that once the correct bit order is determined, one can use snftobdf to
  714. convert fonts back tobdf format then bdftosnf with correct AIX3.1.  bit
  715. order to get things correct with the aix3.1x server.
  716.  
  717.  
  718. 4.10: bash
  719.  
  720. Bash is ported and has some patches on prep.ai.mit.edu.  The current
  721. version is 1.12 and seems to work fine.
  722.  
  723.  
  724. 4.11: Elm
  725.  
  726. Elm should be pretty straightforward, the only thing to remember is to
  727. link with -lcurses as the only curses/termlib library.  You may also run
  728. into the problem listed under point 2.13 above.
  729.  
  730. 4.12: Oberon 2.2
  731.  
  732. From: afx@muc.ibm.de (Andreas Siegert)
  733.  
  734. Oberon is Wirth's followon to Modula-2, but is not compatible.  A free
  735. version of Modula-3 is available from DEC/Olivetti at gatekeeper.dec.com.  
  736. This is also not a Modula-2 replacement but a new language.  There are
  737. currently two M2 compilers for the 6000 that I know of.  One from
  738. Edinburgh Portable Compilers, contact +44 31 225 6262 (UK) or the
  739. Gardens Point compiler contact +41 65 520311 (Switzerland).
  740.  
  741. Oberon can be obtained via anonymous ftp from neptune.inf.ethz.ch
  742. (129.132.101.33) under the directory Oberon/RS6000 or gatekeeper.dec.com
  743. (16.1.0.2).
  744.  
  745.  
  746. 4.13: Kermit
  747.  
  748. Available from watsun.cc.columbia.edu [128.59.39.2] directory kermit/sw. 
  749. Get it, uncompress, untar, and "make rs6000", and it works.
  750.  
  751. 5a184 had a bug with the lock file names.  Grab the latest from
  752. watsun.cc.columbia.edu in the kermit/test directory.  (5a is still
  753. officially in beta, so get your bug reports in quick if you want them
  754. fixed before 5b.)
  755.  
  756.  
  757. 4.14: Gnu dbm
  758. From: doug@cc.ysu.edu (Doug Sewell)
  759.  
  760. Here's the fixes for RS/6000's: 
  761.  
  762. apply this to testgdbm.c:
  763. 158c158
  764. <   char opt;
  765. ---
  766. >   int opt;
  767. 166c166
  768. <   while ((opt = getopt (argc, argv, "rn")) != -1)
  769. ---
  770. >   while ((opt = getopt (argc, argv, "rn")) != EOF)
  771.  
  772. Apply this to systems.h:
  773. 111a112,114
  774. > #ifdef RS6000
  775. > #pragma alloca
  776. > #else
  777. 112a116
  778. > #endif
  779.  
  780. To compile, edit the Makefile.  Set CC to bsdcc (see /usr/lpp/bos/bsdport
  781. if you don't have 'bsdcc' on your system) and set CFLAGS to -DRS6000 and
  782. whatever options (-g, -O) you prefer.  Don't define SYSV.
  783.  
  784. Doug Sewell, Tech Support, Computer Center, Youngstown State University
  785. doug@ysu.edu doug@cc.ysu.edu doug@ysub.bitnet uunet!ysu.edu!doug
  786.  
  787.  
  788. 4.15: tcsh
  789. From: cordes@athos.cs.ua.edu (David Cordes)
  790.  
  791. tcsh : available from telsa.ee.cornell.edu  (pub/tcsh-6.00 directory)
  792. Compiles with no problems.  You must edit /etc/security/login.cfg
  793. to permit users to change to this shell (chsh), adding the path
  794. where the shell is installed (in my case, /usr/local/bin/tcsh).
  795.  
  796.  
  797. 4.16: Kyoto Common Lisp
  798. From: cordes@athos.cs.ua.edu (David Cordes)
  799.  
  800. kcl : Kyoto Common Lisp.  The sources are available from "cli.com".  The
  801. kcl package is the needed base, then also retrieve the latest akcl
  802. distribution.  akcl provides a front-end that "ports" the original kcl
  803. to a number of different platforms.  The port to the 6000s worked with
  804. no problems.  However, you must be "root" for the make to work properly
  805. with some memory protection routines.
  806.  
  807.  
  808. 4.17: TCL
  809. From: Doug Sewell <DOUG@YSUB.YSU.EDU>
  810.  
  811.    === building the tcl library ===
  812.  
  813. First, V3.3 compiled with BSDCC, but tclTest would core-dump.
  814.  
  815. I retrieved V4.0 from the alt.sources archives, but couldn't get it
  816. to compile on an RS6000, using either the BSD or SYSV versions.
  817.  
  818. Finally, someone mentioned that Tcl5.0 was available.
  819.  
  820. I ftp'd sprite.berkeley.edu.  The only version of 'tcl' was 3.3.
  821. The version 5 is a part of 'tk.tar.Z'.  You have to un-tar-Z that
  822. and get tcl 5.0 out of there.
  823.  
  824. Next, I built it with 'bsdcc' (make "CC=bsdcc").  I had to replace the
  825. provided stdlib.h with the AIX stdlib.h because of some conflicts.  I
  826. built tclTest, cd'd to 'tests', ran ../tclTest and entered 'source all'.
  827.  
  828. I got an error in file.test when I ran the program as root.  When I ran
  829. it as anyone else, it runs fine - it has something to do with a file you
  830. shouldn't be able to get to, but because I wase root I could anyway.
  831.  
  832. I copied tcl.a to /usr/lib/libtcl.a, and put tcl.h into /usr/include. 
  833. Your procedures for local libraries and includes may vary.  I also put
  834. tclTest in a public executable directory, since it was a way to putter
  835. with tcl interactively.
  836.  
  837. NOTE: since libtcl.a was built with bsdcc, you'll probably have to use
  838. bsdcc to write or support any tcl applications, including expect.
  839.  
  840.  
  841. 4.18: Expect
  842. From: Doug Sewell <DOUG@YSUB.YSU.EDU>
  843.    
  844. To build the command-interpreter version, you must have the tcl
  845. library built successfully.  The expect library doesn't require tcl.
  846. Note: Expect and its library are are built with bsdcc, so applications
  847. using the library probably also need to be developed with bsdcc.
  848.  
  849. I ftp'd expect from ftp.cme.nist.gov.
  850.  
  851. You need to change several lines in the makefile.  First you need
  852. to customize source and target directories and files:
  853. #
  854. TCLHDIR = /usr/include
  855. TCLLIB = -ltcl
  856. MANDIR = /usr/man/manl               (local man-pages)
  857. MANEXT = l
  858. BINDIR = /u/local/bin
  859. LIBDIR = /usr/lib
  860. HDIR = /usr/include
  861. ...
  862. Next set the compiler, switches, and configuration options:
  863. #
  864. CC = bsdcc
  865. CFLAGS = -O
  866. ...
  867. PTY_TYPE = bsd
  868. ...
  869. INTERACT_TYPE = select
  870. ...
  871. Then you need to make these changes about line 90 or so:
  872. comment out CFLAGS = $(CLFLAGS)
  873. un-comment these lines:
  874. CFLAGS = $(CLFLAGS) $(CPPFLAGS)
  875. LFLAGS = ($CLFLAGS)
  876.  
  877. Then run 'make'.
  878.  
  879. You can't run some of the examples without modification (host name,
  880. etc).  I don't remember if I ran all of them or not, but I ran enough
  881. that I was satisfied it worked.
  882.  
  883. ______________________________________________________________________________
  884. 5.00: Third party products
  885.  
  886. [ Editor's note: Entries in this section are edited for formatting and for
  887.   the purpose of not being like advertising. ]
  888.  
  889. Some information in here seems rather outdated......
  890.  
  891.  
  892. 5.01: Disk/Tape/SCSI
  893. From: anonymous
  894.  
  895. - Most SCSI disk drives work (IBM resells Maxtor, tested Wren 6&7 myself)
  896.  
  897. - Exabyte: Unfortunately only the ones IBM sells are working
  898.  
  899. - STK 3480 "Summit": Works with Microcode Version 5.2b
  900.  
  901.  
  902. 5.02: Disks
  903. From: bowman@uiatma.atmos.uiuc.edu
  904.  
  905. For third-party disks for the RS6000, I can recommend:  Ken Been at
  906. National Peripherals, (708) 325-4151. 
  907.  
  908.  
  909. 5.03: Memory
  910. From: blain@VM.UoGuelph.CA (Doug Blain)
  911.  
  912. I have received a FAX from Kingston Technologies on SIMM memory upgrades
  913. for the RS6000 (model 320/520 only so far).  They are complete
  914. replacements for the installed SIMMs from IBM ( you get to keep the IBM
  915. SIMMs and perhaps use them elsewhere).  They have a 16, 32 and 64 MB
  916. range of kits.  The quoted list prices are;
  917.  
  918.       16 MB SIMM Kit   $ 3,995
  919.       32 MB SIMM Kit   $ 8,995
  920.       64 MB SIMM Kit   $21,585
  921.  
  922. One option they mention in their letter is to purchase an additional
  923. memory card from IBM (type S1 or higher) and populate it with the new
  924. memory, since the RS/6000 will support two memory cards.  The list price
  925. for the IBM 16mb SIMMs is $9520 (however our SE is hinting at price
  926. reductions of 25% soon).  Kingston Technologies can be contacted at
  927. 714-435-2600.  Standard disclaimers apply...no association, benefits, etc. 
  928.  
  929. From: dick@ccnext.ucsf.edu (Dick Karpinski)
  930.  
  931. Dick Verling at 415-381-2081 offers a 64MB upgrade for a bit over $5k.
  932.  
  933.  
  934. 5.04: Others
  935. From: anonymous
  936.        
  937. IBM RISC System/6000 Interface Products
  938.  
  939. National Instruments Corporation announced April 13 a family of
  940. instrumentation interface products for the IBM RISC System/6000
  941. workstation family.  The interface family consists of three products
  942. that give the RISC System/6000 connectivity to the standards of VMEbus,
  943. VXIbus and GPIB.  For more information, contact National Instruments
  944. Corporation, 512-794-0100 or 1-800-433-3488.
  945.  
  946.  
  947. 5.05: IBM list of third party products
  948. From: marc@ibmpa.awdpa.ibm.com (Marc Pawliger)
  949.  
  950. Marc Pawliger post an extensive list periodically on this newsgroup
  951. about various third party hardware products for the RS/6000.  This list
  952. can also be ftp'd from ibminet.awdpa.ibm.com.
  953.  
  954.  
  955. 5.06: C++ compilers
  956.  
  957. There are two software vendors providing C++ compilers, Glockenspiel and
  958. Greenhills.  xlC++ is available from IBM. 
  959. ______________________________________________________________________________
  960. 6.00: Miscellaneous other stuff
  961.  
  962. 6.01: Can I get support by email?
  963.  
  964. AIXServ is a service tool that allows users connected to the internet
  965. and usenet to report problems using unix mail (E-Mail).  AIXServ is
  966. available at no charge, to request a copy of this package send a note to
  967. one of the following E-Mail addresses:
  968.  
  969.     Internet:        aixbugs%aixserv@uunet.UU.NET
  970.     USENET:          uunet.UU.NET!aixserv!aixbugs
  971.  austin.ibm.com domain:  aixbugs@austin.ibm.com
  972.  
  973. with the subject of "package".
  974.  
  975. The package will be mailed electronically and will contain instructions
  976. for using AIXServ.
  977.  
  978. Using AIXServ, customers have the ability to 1) open new problem reports
  979. 2) update existing problem records 3) Request a status update on an
  980. existing problem record.
  981.  
  982.  
  983. 6.02: Some RS232 hints
  984. From: graeme@ccu1.aukuni.ac.nz
  985.  
  986. Q: How do you connect a terminal to the RS232 tty ports when not using
  987.    the standard IBM cable & terminal transposer?
  988. A: 1- Connect pins 2->3, 3->2, 7->7 on the DB25's
  989.    2- On the computer side, loop pins 8->20 (DCD & DTR)
  990.  
  991. When booting from diskettes, the port speed is always 9600 baud.  If you
  992. use SMIT to set a higher speed (38400 is nice) for normal use, remember
  993. to reset your terminal before booting.
  994.  
  995. Q: How do you connect a printer to the RS232 tty ports
  996. A: 1- Connect pins 2->3, 3->2, 7->7 on the DB25's
  997.    2- On the computer side, loop pins 4->5 (CTS & RTS)
  998.  
  999.  
  1000. 6.03: VT100 key bindings for aixterm
  1001. From: haedener@iac.unibe.ch (Konrad Haedener)
  1002.  
  1003. Add this to your .Xdefaults file and start your VAX session with
  1004. 'aixterm -v -name vt100 -e telnet MYVAXHOST'
  1005.  
  1006. -----
  1007. vt100.foreground: Wheat
  1008. vt100.background: MidnightBlue
  1009. vt100.font: Rom14.500
  1010. vt100.geometry: 80x25+0+0
  1011. vt100.vt102: true
  1012. vt100.fullcursor: false
  1013. vt100.pointerColor: coral
  1014. vt100.cursorColor: gray100
  1015. vt100.translations:    <Key>F1: string(0x1b) string("OP") \n\
  1016.                        <Key>F2: string(0x1b) string("OQ") \n\
  1017.                        <Key>F3: string(0x1b) string("OR") \n\
  1018.                        <Key>F4: string(0x1b) string("OS") \n\
  1019.                        <Key>KP_0: string(0x1b) string("Op") \n\
  1020.                        <Key>KP_1: string(0x1b) string("Oq") \n\
  1021.                        <Key>KP_2: string(0x1b) string("Or") \n\
  1022.                        <Key>KP_3: string(0x1b) string("Os") \n\
  1023.                        <Key>KP_4: string(0x1b) string("Ot") \n\
  1024.                        <Key>KP_5: string(0x1b) string("Ou") \n\
  1025.                        <Key>KP_6: string(0x1b) string("Ov") \n\
  1026.                        <Key>KP_7: string(0x1b) string("Ow") \n\
  1027.                        <Key>KP_8: string(0x1b) string("Ox") \n\
  1028.                        <Key>KP_9: string(0x1b) string("Oy") \n\
  1029.                        <Key>KP_Divide: string(0x1b) string("OQ") \n\
  1030.                        <Key>KP_Multiply: string(0x1b) string("OR") \n\
  1031.                        <Key>KP_Subtract: string(0x1b) string("OS") \n\
  1032.                        <Key>KP_Add: string(0x1b) string("Om") \n\
  1033.                        <Key>KP_Enter: string(0x1b) string("OM") \n\
  1034.                        <Key>KP_Decimal: string(0x1b) string("On") \n\
  1035.                        <Key>Next: string(0x1b) string("Ol") \n\
  1036.                        <Key>Left: string(0x1b) string("OD") \n\
  1037.                        <Key>Up: string(0x1b) string("OA") \n\
  1038.                        <Key>Right: string(0x1b) string("OC") \n\
  1039.                        <Key>BackSpace : string(0x7f) \n\
  1040.                        <Key>Down: string(0x1b) string("OB")
  1041.  
  1042. You should also add
  1043.  
  1044. XENVIRONMENT=$HOME/.Xdefaults
  1045. export XENVIRONMENT
  1046.  
  1047. to your .profile.
  1048.  
  1049.  
  1050. 6.04  What publications are available for AIX and RS/6000?
  1051.  
  1052. The following are free just for the asking:
  1053.  
  1054. 1. RS/Magazine
  1055.    P.O. Box 3272
  1056.    Lowell, MA 01853-9876
  1057.  
  1058. 2. AIXpert
  1059.    IBM Corporation
  1060.    Mail Stop 36
  1061.    472 Wheelers Farms Road
  1062.    Milford, CT 06460
  1063.  
  1064. 3. RiSc World
  1065.    P.O. Box 399
  1066.    Cedar Park, TX 78613
  1067.  
  1068.  
  1069. These manuals should be available from your friendly neighborhood IBM office.
  1070.  
  1071. SC23-2204-02  Problem Solving Guide
  1072. SA23-2631-05  Diagnostic Programs: Operator Guide
  1073. SA23-2632-05  Diagnostic Programs: Service Guide
  1074. SA23-2643-01  Hardware Technical Reference: General Information
  1075. SA23-2646-01  Hardware Technical Reference: Options and Devices
  1076. SA23-2629-07  Service Request Number Cross Reference, Ver 2.2
  1077.  
  1078.  
  1079. 6.05: Some acronyms
  1080.  
  1081. BOS  - Basic Operating System
  1082. ODM  - Object Database Manager
  1083. LPP  - Licensed Program Product
  1084. SMIT - System Management Interface Tool
  1085. PTF  - Program Temporary Fix
  1086. APAR - authorized program analysis report
  1087. PRPQ - programming request for price quotation
  1088. DCR  - design change request
  1089. _____________________________________________________________________________
  1090. 7.00: How do I get this by mailserver or ftp?
  1091.  
  1092. Since the articles are crossposted to news.answers, any archive carrying
  1093. that newsgroup will also have these articles.
  1094.  
  1095.  
  1096. 7.01: Contributors
  1097.  
  1098. The following persons have been contributing to this list.  If you want
  1099. to contribute anonymously, just let me know - but do tell me who you
  1100. are.  I apologise if I missed out anyone.
  1101.  
  1102. Thank you all, this would definitely not be the same without _your_ input.
  1103.  
  1104. Rudy Chukran            <chukran@austin.VNET.IBM.COM>
  1105. Christopher Carlyle O'Callaghan    <asdfjkl@wam.umd.edu>
  1106. Poul-Henning Kamp        <phk@data.fls.dk>
  1107. Richard Wendland                <richard@praxis.co.uk>
  1108. Ge van Geldorp            <ge@dutlru2.tudelft.nl>
  1109. Chris Jacobsen            <jacobsen@sbhep2.phy.sunysb.edu>
  1110. Peter Jeffe            <peter@ski.austin.ibm.com>
  1111. Jean-Francois Panisset        <panisset@thunder.mcrcim.mcgill.edu>
  1112. John Cary            <cary@boulder.colorado.edu>
  1113. Vijay Debbad            <vijay@ingres.com>
  1114. Dick Karpinski            <dick@ccnext.ucsf.edu>
  1115. Konrad Haedener            <haedener@iac.unibe.ch>
  1116. Doug Sewell            <DOUG@YSUB.YSU.EDU>
  1117. David Cordes            <cordes@athos.cs.ua.edu>
  1118. Graeme Moffat            <g.moffat@aukuni.ac.nz>
  1119. Andrew Pierce            <pierce@claven.cambridge.ibm.com>
  1120. Stephen Linam            <sdl@glasnost.austin.ibm.com>
  1121. Jerome Park            <jerome%aixserv@uunet.UU.NET>
  1122. Konrad Haedener            <haedener@iacrs1.unibe.ch> 
  1123. Steve Roseman            <lusgr@chili.CC.Lehigh.Edu>
  1124. John Burton            <burton@asdsun.larc.nasa.gov>
  1125. Thierry Forveille        <FORVEILL@FRGAG51.BITNET>
  1126. Joubert Berger            <afc-tci!joubert>
  1127. Minh Tran-Le            <tranle@intellicorp.com>
  1128. Paul Amaranth            <amaranth@vela.acs.oakland.edu>
  1129. Mark Whetzel            <markw@airgun.wg.waii.com>
  1130.                 <jswillia@nycvmic2.vnet.ibm.com>
  1131. Daniel Packman            <pack@acd.ucar.edu>
  1132. Ken Bowman            <bowman@uiatma.atmos.uiuc.edu>
  1133. Doug Blain            <blain@VM.UoGuelph.CA>
  1134. Cary E. Burnette        <kerm@mcnc.org>
  1135. Christophe Wolfhugel        <wolf@grasp1.univ-lyon1.fr>
  1136. Leonard B. Tropiano        <lenny@aixwiz.austin.ibm.com>
  1137. Bill Wohler            <wohler@sap-ag.de>
  1138. James Salter            <jsalter@ibmpa.awdpa.ibm.com>
  1139. Witold Jan Owoc            <witold@enme.ucalgary.ca>
  1140. Marc Kwiatkowski        <marc@ultra.com>
  1141. Ronald S. Woan            <woan@austin.vnet.ibm.com>
  1142. Mijan Huq            <huq@hagar.ph.utexas.edu>
  1143. Herbert van den Bergh        <hbergh@nl.oracle.com>
  1144. Michael Stefanik        <mike@bria.UUCP>
  1145. John F. Haugh            <jfh@rpp386.cactus.org>
  1146. Ed Kubaitis            <ejk@ux2.cso.uiuc.edu>
  1147. Jaime Vazquez            <jaime@austin.vnet.ibm.com>
  1148. Bjorn Engsig            <bengsig@oracle.com>
  1149. Frank Kraemer             <kraemerf@franvm3.VNET.IBM.COM>
  1150.  
  1151. _____________________________________________________________________________
  1152. Epilogue
  1153.  
  1154. If you have any comments about this list, please mail them to me, as I
  1155. cannot guarantee to pick up posted changes.  When you mail stuff, please
  1156. change the Subject: line so it doesn't just say "Re: Frequently ....".
  1157.  
  1158. All input should be emailed to me at basto@cactus.org on the Internet.  
  1159. You can also try using cs.utexas.edu!mavrick!luis.
  1160.  
  1161. I work for Computer Sciences Corp. and I am doing this on my own time.
  1162. Please do not ask me questions that should be asked to IBM. If you have 
  1163. any problems, please ask IBM or post your questions to this newsgroup.
  1164. I might respond to the latter.
  1165.  
  1166. Opinions expressed here have nothing to do with either IBM or CSC.
  1167.  
  1168. All trademarks are the property of their respective owners.
  1169. -- 
  1170. Luis Basto
  1171. Computer Sciences Corporation
  1172. Internet: basto@cactus.org
  1173. Usenet:   cs.utexas.edu!mavrick!luis
  1174.